home *** CD-ROM | disk | FTP | other *** search
- Path: in1.uu.net!pipeline!not-for-mail
- From: gordo@nyc.pipeline.com (Gordon Krefting)
- Newsgroups: comp.lang.c++
- Subject: Re: C to C++
- Date: 3 Jan 1996 11:33:13 -0500
- Organization: The Pipeline
- Message-ID: <4ceb49$ssn@pipe9.nyc.pipeline.com>
- References: <30EA2EA0.86C@comcept.ab.ca>
- NNTP-Posting-Host: pipe9.nyc.pipeline.com
- X-PipeUser: gordo
- X-PipeHub: nyc.pipeline.com
- X-PipeGCOS: (Gordon Krefting)
- X-Newsreader: The Pipeline v3.4.0
-
- On Jan 02, 1996 23:22:08 in article <C to C++>, 'The BFP
- <bfp@comcept.ab.ca>' wrote:
-
-
- >Hey,
- >
- >I am new at this stuff, and I am trying to learn C++. I have looked at C
-
- >source code, and incredibly Simple programs like
- >
- ><#include stdio.h>
- >
- >printf("Hi")
- >
- >Will not compile for C++. I am lame, yes, I kn ow but, hey, Nobody is
- >perfect, anyways, could somebody help me :)
- >
- >Please :)
-
- Your "Simple" program won't compile for C either - try
-
- #include <stdio.h>
- main ()
- {
- printf("Hi");
- }
-
- Also, get a book on C!
-
- gordo
-